home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / comm / patch11b.zip / SFTIMOUT.DTP < prev    next >
Text File  |  1988-10-18  |  2KB  |  49 lines

  1. #
  2. #   SFTIMOUT.DTP - for use with DT_PATCH.EXE
  3. #
  4. #   Copyright (C) 1988 DATASTORM TECHNOLOGIES, INC.
  5. #
  6. #   All Rights Reserved
  7. #
  8. #   Target Program: PROCOMM PLUS version 1.1B
  9. #
  10. #   When performing software flow control (XON/XOFF), PROCOMM PLUS
  11. #   version 1.1B automatically clears an XOFF if no XON is seen within
  12. #   a specified amount of time.  The default timeout period is 20
  13. #   seconds.  In other words, if PROCOMM PLUS detects that it should halt
  14. #   transmission because it has seen an XOFF, the program will wait until
  15. #   an XON is received or 20 seconds elapse.
  16. #
  17. #   This patch file can be used to update the XON wait period.  The
  18. #   first value (following "O31062") is the most significant byte and
  19. #   the last value is the least significant byte.  As distributed, this
  20. #   patch file will increase the timeout to 60 seconds.  If you desire a
  21. #   different value, edit this file (with a standard ASCII editor) and
  22. #   change the values as shown.
  23. #
  24. #
  25. #   Examples
  26. #
  27. #     --------------------------------------------------------------
  28. #     |   @PCPLUS.EXE   ; Effectively wait forever (18 hours)
  29. #     |   O31062
  30. #     |   255                 ; set to FFxx or 65,280 seconds (255*256)
  31. #     |   O31061
  32. #     |   255                 ; set to FFFF (65,535) seconds
  33. #     --------------------------------------------------------------
  34. #
  35. #     --------------------------------------------------------------
  36. #     |   @PCPLUS.EXE   ; This example would wait 15 minutes
  37. #     |   O31062
  38. #     |   3                   ; 3*256
  39. #     |   O31061              ;
  40. #     |   84                  ; seconds = 3*256 + 84 = 900 seconds
  41. #     --------------------------------------------------------------
  42. #
  43. #
  44. @PCPLUS.EXE
  45. O31062
  46. 0
  47. O31061
  48. 60
  49.